Batch 3 - Class 144 - Recursion

Preclass Exercise

Attendance: Khushi, Diya, Damini, Arjun

Class Notes:
Recursion means solving by self reference. Lets take an example.
FUNCTION isAJew(person):
IF person is Abraham's wife Sarah, THEN:
return true
ELSE:
return isAJew(person's mother)
END IF
FUNCTION isAJew(person):
IF person is Abraham's wife Sarah, THEN:
return true
ELSE IF person was born before Sarah was born, THEN:
return false
ELSE:
return isAJew(person's mother)
END IF

Tower of Hanoi
 
FUNCTION MoveTower(disk, source, dest, spare):
IF disk == 0, THEN:
move disk from source to dest
ELSE:
MoveTower(disk - 1, source, spare, dest) // Step 1 above
move disk from source to dest // Step 2 above
MoveTower(disk - 1, spare, dest, source) // Step 3 above
END IF

Homework

References:
https://www.cs.cmu.edu/~cburch/survey/recurse/hanoiex.html
http://jrmf.org/problems/Gossip.pdf
          Mathematical Circles (Russian Experience), by Dmitri Fomin, Sergey Genkin, Ilia Itenberg



NOT U